home *** CD-ROM | disk | FTP | other *** search
- echo off
- cls
-
- if %1X==X GOTO EXPLAIN
-
-
-
- c:
- cd c:\
- cd contacts
- echo Seeking %1 ...
- contacts %1
- cd c:\
- cls
- GOTO END
-
- :EXPLAIN
- echo ═══════════════════════
- echo QUICK TELEPHONE NUMBERS
- echo ═══════════════════════
- echo
- echo This program gives you fast contact details and saves
- echo you stepping through menus.
- echo
- echo From anywhere in DOS (often same as the first main menu)
- echo simply type "PHONE" together with a name. For example,
- echo if you are looking for one John's phone number, say:
- echo
- echo PHONE JOHN
- echo
- echo and press your ─┘ or ENTER key.
- echo
- echo Giving just a few beginning letters of the name is
- echo also sufficient.
- echo
- echo TIP: Remember to turn your name to OVERRIDE under the
- echo "Personal Preferences" option in the "Maintenance" menu.
- echo
- echo This will save you having to confirm your name when the
- echo program loads.
- echo
- GOTO END
-
- :END
- cd c:\
-
-